home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20020314-20021006 / 000281_fdc@columbia.edu_Mon Aug 12 11:47:00 EDT 2002.msg < prev    next >
Text File  |  2020-01-01  |  3KB  |  67 lines

  1. Article: 13610 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.os.linux.misc,comp.protocols.kermit.misc,comp.unix.xenix.sco
  5. Subject: Re: How to transfer data from Xenix 2.3.4 harddisk to Linux 2.4.19
  6. Date: 12 Aug 2002 10:28:13 -0400
  7. Organization: Columbia University
  8. Lines: 50
  9. Message-ID: <aj8glt$osg$1@watsol.cc.columbia.edu>
  10. References: <aj5bpf$go7$00$1@news.t-online.com>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1029162495 3614 128.59.39.139 (12 Aug 2002 14:28:15 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 12 Aug 2002 14:28:15 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.os.linux.misc:558264 comp.protocols.kermit.misc:13610 comp.unix.xenix.sco:18629
  16.  
  17. In article <aj5bpf$go7$00$1@news.t-online.com>,
  18. Lutz Michaelsen <lmicha@t-online.de> wrote:
  19. : Xenix 2.3.4 box having a harddisk with lots of data (600Mb)
  20. : Xenix box does not have a network card nor a CD-ROM
  21. : Linux box with SuSE 7.3 and 2.4.19 Kernel
  22. : Goal: I want to transfer the data from Xenix to the linux box.
  23. : I tried to mount the harddisk on my linux box, but it wasn't successful.
  24. : sysv-module is there, but the partition on the Xenix hardisk is splitted
  25. : with "divvy".
  26. : I installed a second harddisk in the xenix box and created a single
  27. : partition with "mkdev hd". I was able to put the Xenix data on this new
  28. : harddisk, but Linux was still not able to mount the new harddisk.
  29. : Question: What else can I try to transfer the data from Xenix to Linux?
  30. Obviously it would be best if you can just move the disk, but if that's
  31. not possible...
  32.  
  33. TCP/IP based methods are out of the question unless your Xenix system
  34. happens to be one of the few that includes the SCO Xenix TCP/IP option.
  35.  
  36. As a last resort you could use Kermit to transfer the data through the
  37. serial port with a null modem cable.  Up-to-date Kermit versions are 
  38. available for both Xenix 2.3.4 and Linux: 
  39.  
  40.   http://www.columbia.edu/kermit/
  41.  
  42. I think the highest serial speed supported by Xenix is 38400bps = 3840cps.
  43. You'd have to use Xon/Xoff flow control because Xenix doesn't support
  44. RTS/CTS.  At that speed it would take about:
  45.  
  46.   (/ 600000000.0 3840.0 3600.0)
  47.   43.4
  48.  
  49. hours to move 600MB.  That's a long time, but you can set Kermit up
  50. to be super-persistent about getting the data across, so you can go away
  51. for the weekend and reasonably expect to find the transfer done when you
  52. return; see, for example, the "deliver" script in the Kermit script
  53. library:
  54.  
  55.   http://www.columbia.edu/kermit/ckscripts.html
  56.  
  57. I'm including the Xenix newsgroup in this reply in case anybody there has
  58. a better idea.
  59.  
  60. - Frank
  61.